home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / TEX-UTIL / DVIPS_55 / dvips / src / h / debug next >
Text File  |  1994-05-06  |  424b  |  21 lines

  1. /* 
  2.  * Here's some stuff for debugging dvips.
  3.  */
  4.  
  5. #ifdef DEBUG
  6.  
  7. #define dd(darg)    ((darg)&debug_flag)
  8.  
  9. #define D_SPECIAL        (1<<0)
  10. #define D_PATHS            (1<<1)
  11. #define D_FONTS            (1<<2)
  12. #define D_PAGE            (1<<3)
  13. #define D_HEADER                (1<<4)
  14. #define D_COMPRESS              (1<<5)
  15. #define D_FILES            (1<<6)
  16. #define D_MEM                   (1<<7)
  17.  
  18. #define fopen my_real_fopen
  19. extern FILE *my_real_fopen() ;
  20. #endif /* DEBUG */
  21.